From e7fe314870442fb85f8ecfc0e0bc605dddcd75b1 Mon Sep 17 00:00:00 2001 From: Anthony PERARD Date: Mon, 6 Dec 2021 17:02:00 +0000 Subject: [PATCH] tools/xl: Remove unnecessary -I. from CFLAGS GCC will search the directory where the source file is for quote-includes. Signed-off-by: Anthony PERARD Acked-by: Andrew Cooper --- tools/xl/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/xl/Makefile b/tools/xl/Makefile index 656b21c7da..2e129f00e1 100644 --- a/tools/xl/Makefile +++ b/tools/xl/Makefile @@ -7,7 +7,7 @@ include $(XEN_ROOT)/tools/Rules.mk CFLAGS += -Werror -Wno-format-zero-length -Wmissing-declarations \ -Wno-declaration-after-statement -Wformat-nonliteral -CFLAGS += -I. -fPIC +CFLAGS += -fPIC CFLAGS += $(PTHREAD_CFLAGS) LDFLAGS += $(PTHREAD_LDFLAGS) -- 2.30.2